home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / asmsrc / thesource-7.lha / Source / polyfit.lha / polyfit / fit.h < prev    next >
C/C++ Source or Header  |  1990-05-04  |  314b  |  26 lines

  1. #include <stdio.h>
  2. #include <math.h>
  3.  
  4. struct point
  5. {
  6.    double X;
  7.    double Y;
  8. };
  9.  
  10. typedef struct point point;
  11.  
  12. typedef point *points;
  13.  
  14. typedef double matelm;
  15. typedef matelm *matrow;
  16. typedef matrow *matrix;
  17.  
  18. typedef char   *pointer;
  19.  
  20.  
  21. extern char *calloc();
  22.  
  23. matrix  MatInit();
  24. double  MatInv();
  25. pointer Calloc();
  26.